.navbar-miettes {
  background-color: white;
}

* {
  box-sizing: border-box;
}

.wrapper-container {
  display: inline-flex;

  flex-direction: row;
  margin-top: 100px;
}

/* .product-details {
  margin-left: 40vh;
} */

.slideshow-container {
  display: flex;
  justify-content: center;
  margin-left: 2vmin;
  width: 100%;
}

.product-details {
  display: inline;
  width: 100%;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  line-height: 0;
  list-style: none;
}
/* .thumbnails li {
  flex: auto;
} */

.thumbnails li + li {
  margin-top: 3.3vmin;
}

.thumbnails a {
  display: block;
}

.thumbnails img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
}

ul.slides {
  overflow: hidden;
  list-style: none;
  width: 50vw;
  height: 100%;
}
.slides li {
  position: absolute;
  z-index: 1;
  /* transition: 0.5s; */
}

.slides img {
  height: 50vw;
  max-height: 800px;
  width: 45vw;
  min-width: 400px;
  min-height: 530px;
  max-height: 650px;
  max-width: 600px;

  object-fit: cover;
  object-position: top;
}

/* .slides li:target {
  z-index: 3;
} */

/* @keyframes slide {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes hidden {
  0% {
    z-index: 2;
  }
  100% {
    z-index: 2;
  }
} */

.wrapper-container-mobile {
  display: inline-flex;
  overflow: hidden;
  transform: translateX(0);
  transition: transform 0.3s ease-out;
  cursor: grab;
}

/* .slide-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
} */

.slide-mobile img {
  overflow-x: scroll;
  width: 100vw;
  min-width: 400px;
  min-height: 530px;
  object-position: top;
  height: auto;
  object-fit: cover;
}

.grabbing {
  cursor: grabbing;
}

.grabbing .slide img {
  transform: scale(0.9);
}
.view-product-mobile-section {
  position: relative;
  display: none;
}

.dots {
  display: inline-flex;
  flex-direction: row;
  position: absolute;
  top: 50%;
  right: 50%;
  list-style-type: none;
  margin: 0 20px 0 0;
}

.dot {
  border: solid 1px;
  border-radius: 50%;
  color: white;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.product-details {
  font-family: var(--title_font);
  padding-right: 20px;
  /* margin-left: 5vw; */
}

.product-title {
  font-size: 2.5vw;
  margin: 0;
  margin-block: 0;
  white-space: nowrap;
}
.product-price,
.product-collection,
.product-category,
.product-colorTitle,
.product-sizeTitle {
  margin: 0;
  margin-block: 0;
  margin: 0;
  margin-block: 0;
  font-size: 25px;
  font-family: var(--other_font);
}

.product-price {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.product-colorTitle,
.product-sizeTitle {
  margin-top: 20px;
}
.colorSize-choose {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.containerRadio {
  font-family: var(--other_font);
  display: block;
  position: relative;
  padding-left: 5px;
  margin-bottom: 12px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 18px;
  margin-right: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
}

.colorSize-choose input {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

input[type="radio"] {
  background-color: transparent;
  appearance: none;
}

.checkmark {
  height: 30px;
  width: 30px;
  background-color: #eee;
  border-radius: 50%;
  margin-bottom: -20px;
}

.checkmarkSize {
  border-radius: 0;
  text-align: center;
  justify-content: center;
  color: black;
  background-color: white;
  border: 1px solid black;
  font-size: 19px;
  width: auto;
  min-width: 30px;
  padding: 5px 10px;
  height: auto;
  min-height: 30px;
  line-height: normal;
  display: flex;
  align-items: center;
}

.containerRadio input:checked ~ .checkmark {
  border: 2px solid black;
  color: white;
}

.containerRadio .checkmark:after,
.checkmarkSize:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 80%;
  background: transparent;
}

.containerRadio input:checked ~ .checkmarkSize {
  background-color: var(--lighter_accent_color);
  text-align: center;
}

.containerRadio .checkmark:after,
.checkmarkSize:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 80%;
  background: transparent;
}

.containerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

label.checkmark {
  display: inline-block;
}

.addToCart {
  margin-top: 30px;
  /* background-color: black; */
  text-align: center;
  min-width: 300px;
  color: black;
  /* border-radius: 10px; */
  border-color: black;
  border: 1px solid;
  height: 40px;
}
#add-to-cart {
  color: white;
  background-color: var(--lighter_accent_color);
}

.accordionDetails {
  /* background-color: #eee; */
  color: var(--font_color);
  cursor: pointer;
  padding: 18px;
  min-width: 300px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-bottom: 2px solid var(--lighter_accent_color);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
}

/* .activate,
.accordionDetails:hover {
  /* background-color: #ccc; */

.accordionDescription {
  text-align: start;
  max-width: 300px;
  word-wrap: break-word;
  font-family: var(--other_font);
  padding-left: 10px;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
}

.accordionDescription ol > li {
  margin: 10px 0;
}

.accordionDescription ol {
  padding: 0;
  padding-left: 10px;
  text-align: justify;
}

.accordionDetails:after {
  content: "\002B";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.activate:after {
  content: "\2212";
}

.dot-selected {
  background-color: var(--lighter_accent_color);
  border-color: transparent;
}

.panel {
  /* padding: 0 18px; */
  display: none;
  background-color: white;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
  /* overflow: hidden; */
}

.product-description {
  margin-top: 20px;
  width: max-content;
}

.marker-label {
  position: relative;
  width: 100vw;
}

.image-navigator {
  padding: 0;
  text-align: center;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 5%;
  /* right: 50%; */
  color: white;
  list-style: none;
  width: 100%;
}

.image-navigator li {
  display: inline-block;
}

.product-category {
  text-transform: capitalize;
}

@media only screen and (min-width: 1000px) {
  .body-content {
    margin-bottom: 200px;
  }
}

@media only screen and (max-width: 1000px) {
  .view-product {
    display: none;
  }
  .view-product-mobile-section {
    position: relative;
    display: inline-flex;
    flex-direction: column;
  }

  .product-details {
    text-align: center;
    padding: 20px;
    width: 100vw;
  }

  .product-title {
    text-align: center;
    font-size: 6vw;
  }

  .product-description {
    margin-top: 30px;
  }

  .product-price,
  .product-collection,
  .product-category,
  .product-colorTitle,
  .product-sizeTitle {
    font-size: 20px;
  }

  /* .wrapper-container-mobile {
    display: inline-flex;
  } */
  /* .wrapper-container {
    flex-direction: column;
    margin-left: 0;
    margin-top: 0px;
  }

  .slideshow-container {
    margin-top: 55px;
    flex-direction: column-reverse;
    margin-left: 0;
    width: 100%;
  }
  .thumbnails img {
    width: 20vmin;
    height: 20vmin;
    object-fit: cover;
    object-position: top;
  }

  .thumbnails {
    display: none;
    margin-top: 55px;
  }

  ul {
    padding: 0;
    margin: 0;
  }

  .slides img {
    width: 100vw;
    height: auto;
    max-height: 1000px;
  }

  .thumbnails {
    flex-direction: row;
  }
  .product-details {
    margin-top: 30vmin;
  } */
  .addToCart,
  .accordionDetails,
  .product-description {
    width: 100%;
  }

  .accordionDescription {
    max-width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .slides img {
    max-height: 600px;
  }
}

.newsletter,
.socials,
.links {
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 0);
}
